home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / perl5 / Glib / MainLoop.pod < prev    next >
Text File  |  2009-04-29  |  6KB  |  295 lines

  1. =head1 NAME
  2.  
  3. Glib::MainLoop -  An event source manager
  4.  
  5. =cut
  6.  
  7. =for position DESCRIPTION
  8.  
  9. =head1 DESCRIPTION
  10.  
  11. Event-driven programs need some sort of loop which watches for events and
  12. launches the appropriate actions.  Glib::MainLoop provides this functionality.
  13.  
  14. Mainloops have context, provided by the MainContext object.  For the most part
  15. you can use the default context (see C<default>), but if you want to create a
  16. subcontext for a nested loop which doesn't have the same event sources, etc,
  17. you can.
  18.  
  19. Event sources, attached to main contexts, watch for events to happen, and
  20. launch appropriate actions.  Glib provides a few ready-made event sources,
  21. the Glib::Timeout, Glib::Idle, and io watch (C<< Glib::IO->add_watch >>).
  22.  
  23. Under the hood, Gtk+ adds event sources for GdkEvents to dispatch events to
  24. your widgets.  In fact, Gtk2 provides an abstraction of Glib::MainLoop (See
  25. C<< Gtk2->main >> and friends), so you may rarely have cause to use
  26. Glib::MainLoop directly.
  27.  
  28. Note: As of version 1.080, the Glib module uses a custom event source to
  29. ensure that perl's safe signal handling and the glib polling event loop
  30. play nicely together.  It is no longer necessary to install a timeout to
  31. ensure that async signals get handled in a timely manner.
  32.  
  33. =head1 CONSTANTS
  34.  
  35. C<SOURCE_REMOVE> and C<SOURCE_CONTINUE> are designed for use as the
  36. return values from timeout, idle and I/O watch source functions.  They
  37. return true to keep running or false to remove themselves.  These
  38. constants can help you get that the right way around.
  39.  
  40.     Glib::SOURCE_CONTINUE     # true
  41.     Glib::SOURCE_REMOVE       # false
  42.  
  43. =cut
  44.  
  45.  
  46.  
  47. =for object Glib::MainLoop
  48. =cut
  49.  
  50. =for object Glib::MainLoop An event source manager
  51. =cut
  52.  
  53. =for object Glib::MainLoop
  54. =cut
  55.  
  56. =for object Glib::MainLoop
  57. =cut
  58.  
  59. =for object Glib::MainLoop
  60. =cut
  61.  
  62. =for object Glib::MainLoop
  63. =cut
  64.  
  65. =for object Glib::MainLoop
  66. =cut
  67.  
  68.  
  69.  
  70.  
  71. =head1 METHODS
  72.  
  73. =head2 maincontext thingamabob = Glib::MainContext-E<gt>B<new> 
  74.  
  75. =head2 mainloop = Glib::MainLoop-E<gt>B<new> ($context=undef, $is_running=FALSE)
  76.  
  77. =over
  78.  
  79. =item * $context (Glib::MainContext thingamabob) 
  80.  
  81. =item * $is_running (boolean) 
  82.  
  83. =back
  84.  
  85. =head2 integer = Glib::Timeout-E<gt>B<add> ($interval, $callback, $data=undef, $priority=G_PRIORITY_DEFAULT)
  86.  
  87. =over
  88.  
  89. =item * $interval (integer) number of milliseconds
  90.  
  91. =item * $callback (subroutine) 
  92.  
  93. =item * $data (scalar) 
  94.  
  95. =item * $priority (integer) 
  96.  
  97. =back
  98.  
  99.  
  100. Run I<$callback> every I<$interval> milliseconds until I<$callback> returns
  101. false.  Returns a source id which may be used with C<< Glib::Source->remove >>.
  102. Note that a mainloop must be active for the timeout to execute.
  103.  
  104.  
  105. =head2 integer = Glib::Idle-E<gt>B<add> ($callback, $data=undef, $priority=G_PRIORITY_DEFAULT_IDLE)
  106.  
  107. =over
  108.  
  109. =item * $callback (subroutine) 
  110.  
  111. =item * $data (scalar) 
  112.  
  113. =item * $priority (integer) 
  114.  
  115. =back
  116.  
  117.  
  118. Run I<$callback> when the mainloop is idle.  If I<$callback> returns false,
  119. it will uninstall itself, otherwise, it will run again at the next idle
  120. iteration.  Returns a source id which may be used with
  121. C<< Glib::Source->remove >>.
  122.  
  123.  
  124. =head2 integer = Glib::Timeout-E<gt>B<add_seconds> ($interval, $callback, $data=undef, $priority=G_PRIORITY_DEFAULT)
  125.  
  126. =over
  127.  
  128. =item * $interval (integer) 
  129.  
  130. =item * $callback (scalar) 
  131.  
  132. =item * $data (scalar) 
  133.  
  134. =item * $priority (integer) 
  135.  
  136. =back
  137.  
  138. Since: glib 2.14
  139.  
  140. =head2 integer = Glib::IO-E<gt>B<add_watch> ($fd, $condition, $callback, $data=undef, $priority=G_PRIORITY_DEFAULT)
  141.  
  142. =over
  143.  
  144. =item * $fd (integer) file descriptor, e.g. fileno($filehandle)
  145.  
  146. =item * $condition (Glib::IOCondition) 
  147.  
  148. =item * $callback (subroutine) 
  149.  
  150. =item * $data (scalar) 
  151.  
  152. =item * $priority (integer) 
  153.  
  154. =back
  155.  
  156.  
  157. Run I<$callback> when there is an event on I<$fd> that matches I<$condition>.
  158. The watch uninstalls itself if I<$callback> returns false.
  159. Returns a source id that may be used with C<< Glib::Source->remove >>.
  160.  
  161. Glib's IO channels serve the same basic purpose as Perl's file handles, so
  162. for the most part you don't see GIOChannels in Perl.  The IO watch integrates
  163. IO operations with the main loop, which Perl file handles don't do.  For
  164. various reasons, this function requires raw file descriptors, not full
  165. file handles.  See C<fileno> in L<perlfunc>.
  166.  
  167.  
  168. =head2 maincontext thingamabob = $loop-E<gt>B<get_context> 
  169.  
  170. =head2 maincontext thingamabob = Glib::MainContext-E<gt>B<default> 
  171.  
  172. =head2 boolean = $context-E<gt>B<is_owner> 
  173.  
  174. Since: glib 2.12
  175.  
  176. =head2 boolean = $loop-E<gt>B<is_running> 
  177.  
  178. =head2 boolean = $context-E<gt>B<iteration> ($may_block)
  179.  
  180. =over
  181.  
  182. =item * $may_block (boolean) 
  183.  
  184. =back
  185.  
  186. =head2 integer = Glib::main_depth 
  187.  
  188. Find the current main loop recursion level.  This is handy in fringe
  189. situations, but those are very rare; see the C API reference for a more
  190. in-depth discussion.
  191.  
  192. Since: glib 2.4
  193.  
  194. =head2 boolean = $context-E<gt>B<pending> 
  195.  
  196. =head2 $loop-E<gt>B<quit> 
  197.  
  198. =head2 boolean = Glib::Source-E<gt>B<remove> ($tag)
  199.  
  200. =over
  201.  
  202. =item * $tag (integer) 
  203.  
  204. =back
  205.  
  206.  
  207. Remove an event source.  I<$tag> is the number returned by things like
  208. C<< Glib::Timeout->add >>, C<< Glib::Idle->add >>, and
  209. C<< Glib::IO->add_watch >>.
  210.  
  211.  
  212. =head2 $loop-E<gt>B<run> 
  213.  
  214. =head2 integer = Glib::Child-E<gt>B<watch_add> ($pid, $callback, $data=undef, $priority=G_PRIORITY_DEFAULT)
  215.  
  216. =over
  217.  
  218. =item * $pid (integer) child process ID
  219.  
  220. =item * $callback (subroutine) 
  221.  
  222. =item * $data (scalar) 
  223.  
  224. =item * $priority (integer) 
  225.  
  226. =back
  227.  
  228.  
  229. Add a source to the default main context which will call
  230.  
  231.     &$callback ($pid, $waitstatus, $data)
  232.  
  233. when child process $pid terminates.  The return value is a source id
  234. which can be used with C<< Glib::Source->remove >>.  When the callback
  235. is made the source is removed automatically.
  236.  
  237. In a non-threaded program Glib implements this source by installing a
  238. SIGCHLD handler.  Don't change $SIG{CHLD} in Perl or the callback will
  239. never run.
  240.  
  241.  
  242. Since: glib 2.4
  243.  
  244.  
  245.  
  246. =cut
  247.  
  248.  
  249. =head1 ENUMS AND FLAGS
  250.  
  251. =head2 flags Glib::IOCondition
  252.  
  253.  
  254.  
  255. =over
  256.  
  257. =item * 'in' / 'G_IO_IN'
  258.  
  259. =item * 'out' / 'G_IO_OUT'
  260.  
  261. =item * 'pri' / 'G_IO_PRI'
  262.  
  263. =item * 'err' / 'G_IO_ERR'
  264.  
  265. =item * 'hup' / 'G_IO_HUP'
  266.  
  267. =item * 'nval' / 'G_IO_NVAL'
  268.  
  269. =back
  270.  
  271.  
  272.  
  273.  
  274. =cut
  275.  
  276.  
  277. =head1 SEE ALSO
  278.  
  279. L<Glib>
  280.  
  281.  
  282. =cut
  283.  
  284.  
  285. =head1 COPYRIGHT
  286.  
  287. Copyright (C) 2003-2009 by the gtk2-perl team.
  288.  
  289. This software is licensed under the LGPL.  See L<Glib> for a full notice.
  290.  
  291.  
  292.  
  293. =cut
  294.  
  295.